body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.icon-gear {
    font-size: 60px;
    animation: spin 3s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}

p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-box {
    background-color: #f9fbfb;
    padding: 20px;
    border-top: 2px solid #3498db;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}